"try to love again.."是个女的唱的. 想知道歌名..

来源:百度知道 编辑:UC知道 时间:2024/06/22 12:48:09
在酒吧偶尔听到女singer唱的..歌曲节奏比较强..只记得里面一句歌词i'll try to love again. 找了很久都没找到正确的歌.. 哪位大侠知道的告诉一下 非常感谢哦..

有没有男声的?

有一首I'll try to love again是法国歌手F.R. David的专辑Numbers里的,不过是男声,节奏也比较柔和,但你是在酒吧听到的,所以可能是演唱者改过了.
http://www.7yin.com/play_ok/00a336a2d30670fb.htm

import java.util.Date;
import java.util.Calendar;
public class DateTest{
private String s;
private Date da;
public DateTest(String s,Date d)throws Exception
{this.s=s;
if(d.compareTo(new Date())>0)
throw new Exception("date incorrect");
this.da=d;
}
protected Date getDate(){
return da;
}
public static void main(String[] args) {
Car1 a,b;
int s=0;
String w=null;
Date ff=new Date();
Calendar c=Calendar.getInstance();
c.setTime(ff);
c.add(Calendar.MONTH,1);
try{
b=new Car1(w,new Date(),s); //日期相等
System.out.println(b);
a=new Car1(w,c.getTime(),s); //日期大于当前日期